home *** CD-ROM | disk | FTP | other *** search
/ Cream of the Crop 26 / Cream of the Crop 26.iso / program / qlib205.zip / QLIB.ZIP / TEST / SOUND.ASM < prev    next >
Assembly Source File  |  1997-05-25  |  430b  |  31 lines

  1. include qlib.inc
  2. include stdio.inc
  3. include dos.inc
  4. include conio.inc
  5.  
  6. .code
  7. main proc
  8.   callp sound,11340
  9.   callp delay,250   ;1/4sec
  10.   callp sound,22340
  11.   callp delay,250   ;1/4sec
  12.   callp sound,5440
  13.   callp delay,100   ;1/10sec
  14.  
  15.   mov bx,30000
  16.   mov cx,30
  17. @@:
  18.   callp sound,bx
  19.   callp delay,25
  20.   sub bx,1000
  21.   dec cx
  22.   jnz @b
  23.  
  24.   call nosound  ;I spell relief "N O S O U N D"
  25.  
  26.   ret
  27. main endp
  28.  
  29. end
  30.  
  31.